home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ucturbo2 / equip.h < prev    next >
Text File  |  1987-05-17  |  1KB  |  19 lines

  1. /*************************************************************************
  2.  *                                                                       *
  3.  *                            equip.h                                    *
  4.  *                                                                       *
  5.  *    This header defines a structure to hold equipment installed data   *
  6.  *                                                                       *
  7.  *************************************************************************/
  8.  
  9. struct EQUIP
  10.        {
  11.            int   disk_yn,      /* 1 = yes disks installed                */
  12.                  game_adpt,    /* 1 = game adapter installed             */
  13.                  print_port,   /* number of printer ports installed      */
  14.                  n232,         /* number of serial ports installed       */
  15.                  vmode,        /* initial video mode                     */
  16.                  ndisks,       /* number of disk drives installed        */
  17.                  mem;          /* amount of base memory installed        */
  18.        };
  19.